03 – Methods

Methods are kind of like subroutines in Java. That is, in your typical Java code methods are really where all the work gets done. Let’s start by taking a look at a special method to Java, which is our “main” method. public class Test1 {   public static void main(String[] args) {     // Our method code … Continue reading 03 – Methods